home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr27 / gs26.zip / README.DOC < prev    next >
Text File  |  1993-05-07  |  4KB  |  128 lines

  1.    Copyright (C) 1990, 1992, 1993 Aladdin Enterprises.  All rights reserved.
  2.    Distributed by Free Software Foundation, Inc.
  3.  
  4. This file is part of Ghostscript.
  5.  
  6. Ghostscript is distributed in the hope that it will be useful, but
  7. WITHOUT ANY WARRANTY.  No author or distributor accepts responsibility
  8. to anyone for the consequences of using it or for whether it serves any
  9. particular purpose or works at all, unless he says so in writing.  Refer
  10. to the Ghostscript General Public License for full details.
  11.  
  12. Everyone is granted permission to copy, modify and redistribute
  13. Ghostscript, but only under the conditions described in the Ghostscript
  14. General Public License.  A copy of this license is supposed to have been
  15. given to you along with Ghostscript so you can know your rights and
  16. responsibilities.  It should be in a file named COPYING.  Among other
  17. things, the copyright notice and this notice must be preserved on all
  18. copies.
  19.  
  20. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  21.  
  22. This file, readme.doc, describes problems and new features in the
  23. current release of Ghostscript.  This file describes version 2.6.0 of
  24. Ghostscript.
  25.  
  26. For an overview of Ghostscript and a list of the documentation files, see
  27. README.
  28.  
  29. New features
  30. ============
  31.  
  32. Note: this is not a complete list of new features.  See the most recent
  33. section of NEWS for full details.
  34.  
  35. Ghostscript now does not provide any PostScript Level 2 features unless
  36. the level2 feature was selected; in particular, dictionaries no longer
  37. grow automatically.  Level 2 features, if present, can be turned on and
  38. off dynamically.
  39.  
  40. ps2ascii, the utility for extracting the ASCII text from a PostScript
  41. file, now normally produces plain text output.
  42.  
  43. There is a new ps2epsi utility for converting arbitrary PostScript files
  44. to EPSI format.
  45.  
  46. The "line printer" utility gslp and its variants now supports most of the
  47. same switches as the Unix enscript utility, plus new ones for heading,
  48. footing, and spacing control.
  49.  
  50. The Microsoft C/C++ 7.0 compiler is now supported on the PC.
  51.  
  52. The LaserJet IIp driver now skips whitespace correctly.
  53.  
  54. New drivers include the Tektronix 4693d printer, the SPARCprinter, the IBM
  55. ProPrinter, and the MS Windows .BMP file format.
  56.  
  57. Many new PostScript Level 2 features are supported, including CIE and
  58. table-based Indexed color spaces.  See the NEWS file for details.
  59.  
  60. Known problems
  61. ==============
  62.  
  63. Interpreter
  64. -----------
  65.  
  66. The interactive interpreter requires that every statement fit on a line,
  67. i.e., you can't have an unpaired ( or {.
  68.  
  69. On a MS-DOS system, interrupting Ghostscript by typing ^C doesn't restore
  70. the display mode.
  71.  
  72. Operators
  73. ---------
  74.  
  75. The Ghostscript language does not include the following operators of the
  76. PostScript language:
  77.  
  78.     resetfile
  79.     banddevice, renderbands (these are obsolete)
  80.  
  81. The following are not implemented completely:
  82.  
  83.     %statementedit (file name): interpreted as equivalent to
  84. %lineedit.
  85.  
  86. The following operators that expect arrays won't accept packed arrays:
  87.     definefont (Subrs (type 1 fonts))
  88.     setdash (dash pattern)
  89.     setcachedevice (bounding box)
  90.     makeimagedevice (palette)
  91.  
  92. Limitations
  93. -----------
  94.  
  95. Floating point exceptions terminate Ghostscript, rather than producing a
  96. rangecheck error.
  97.  
  98. copypage does nothing in the MS-DOS implementation, and merely
  99. synchronizes the X connection in the Unix implementation.  showpage is a
  100. procedure that does a copypage and then beeps the bell and waits for the
  101. user to hit a key. (copypage does do the right thing for printers.)
  102.  
  103. Graphics bugs
  104. -------------
  105.  
  106. strokepath may produce incorrect output for dashed lines.
  107.  
  108. The implementation only looks at the PaintType of the font when doing
  109. show, not when doing charpath.  Because of this, stroked fonts don't work
  110. correctly with charpath.
  111.  
  112. arcto gives an error for negative radii.
  113.  
  114. Halftone patterns "flip over" at the 50% coverage point, producing
  115. anomalous visual effects on some color devices.
  116.  
  117. Opening more than one window device at the same time doesn't work.
  118. This is the case for both X Windows and Microsoft Windows.
  119.  
  120. Non-graphics bugs
  121. -----------------
  122.  
  123. restore doesn't properly undo currentgstate.
  124.  
  125. Copying a dictionary may alter some items even if a later item causes
  126. an invalidaccess error because of an attempted store of a local
  127. object into global VM.
  128.